home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / adainc / s-cconst.ads < prev    next >
Text File  |  1996-01-30  |  2KB  |  40 lines

  1. -----------------------------------------------------------------------------
  2. --                                                                         --
  3. --                GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                         --
  5. --                         C _ C o n s t a n t s                           --
  6. --                                                                         --
  7. --                                 S p e c                                 --
  8. --                                                                         --
  9. --                            $Revision: 1.1 $                            --
  10. --                                                                         --
  11. --          Copyright (c) 1991,1992,1993, FSU, All Rights Reserved         --
  12. --                                                                         --
  13. -- GNARL is free software; you can redistribute it and/or modify it  under --
  14. -- terms  of  the  GNU  Library General Public License as published by the --
  15. -- Free Software Foundation; either version 2, or  (at  your  option)  any --
  16. -- later  version.   GNARL is distributed in the hope that it will be use- --
  17. -- ful, but but WITHOUT ANY WARRANTY; without even the implied warranty of --
  18. -- MERCHANTABILITY  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Gen- --
  19. -- eral Library Public License for more details.  You should have received --
  20. -- a  copy of the GNU Library General Public License along with GNARL; see --
  21. -- file COPYING. If not, write to the Free Software Foundation,  675  Mass --
  22. -- Ave, Cambridge, MA 02139, USA.                                          --
  23. --                                                                         --
  24. -----------------------------------------------------------------------------
  25.  
  26. package System.C_Constants is
  27.  
  28. pthread_t_size : constant Integer := 4;
  29. pthread_attr_t_size : constant Integer := 28;
  30. pthread_mutexattr_t_size : constant Integer := 12;
  31. pthread_mutex_t_size : constant Integer := 32;
  32. pthread_condattr_t_size : constant Integer := 4;
  33. pthread_cond_t_size : constant Integer := 20;
  34. pthread_key_t_size : constant Integer := 4;
  35. pthread_jmp_buf_size : constant Integer := 16;
  36. pthread_sigjmp_buf_size : constant Integer := 16;
  37. Add_Prio : constant Integer := 2;
  38.  
  39. end System.C_Constants;
  40.